Add missing package and fix default password

Added the "rack" package to the initial install (on Ubuntu 14.04 it's required) and unified the default password for logging in post install.

Ryan Victory 9 年之前
父节点
当前提交
c6dae618f3
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      doc/manual/installation.md

+ 2 - 2
doc/manual/installation.md

@@ -73,7 +73,7 @@ Download Ruby and compile it:
73 73
 
74 74
 Install the bundler and foreman gems:
75 75
 
76
-    sudo gem install bundler foreman --no-ri --no-rdoc
76
+    sudo gem install rake bundler foreman --no-ri --no-rdoc
77 77
 
78 78
 ## 3. System Users
79 79
 
@@ -225,7 +225,7 @@ When done you see `See the Huginn Wiki for more Agent examples!  https://github.
225 225
 
226 226
 **Note:** This will create an initial user, you can set the username and password by supplying it in environmental variables `SEED_USERNAME` and `SEED_PASSWORD` as seen below. If you don't set the password (and it is set to the default one) please wait with exposing Huginn to the public internet until the installation is done and you've logged into the server and changed your password.
227 227
 
228
-    sudo -u huginn -H bundle exec rake db:seed RAILS_ENV=production SEED_USERNAME=admin SEED_PASSWORD=yourpassword
228
+    sudo -u huginn -H bundle exec rake db:seed RAILS_ENV=production SEED_USERNAME=admin SEED_PASSWORD=password
229 229
 
230 230
 ### Compile Assets
231 231